home *** CD-ROM | disk | FTP | other *** search
- if(this.txt == 3)
- {
- this.txt = 2;
- }
- else if(this.txt == 2)
- {
- this.txt = 1;
- }
- else if(this.txt == 1)
- {
- this.txt = "GO!";
- }
- else if(this.txt == "GO!")
- {
- this.txt = "done";
- }
- if(this.txt == "done")
- {
- this._parent._parent.gamePlay = true;
- this.gotoAndStop("blank");
- }
- else
- {
- this.gotoAndPlay("count");
- }
-